img {
	max-width: 100%;
}

.padding-20 {
	padding: 20px !important;
}

.margin-b-0 {
	margin-bottom: 0;
}

/* flex布局 */
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	clear: both;
}
.flex > * {
	float: left;
}

.just-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.just-between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.just-around {
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}

.align-center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.align-end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

/* 文字大小 */
.f-12 {
	font-size: 12px;
}

.f-14 {
	font-size: 14px;
}

.f-16 {
	font-size: 16px;
}

.f-18 {
	font-size: 18px;
}

.f-20 {
	font-size: 20px;
}

.f-22 {
	font-size: 22px;
}

.f-24 {
	font-size: 24px;
}

.f-26 {
	font-size: 26px;
}

.f-28 {
	font-size: 28px;
}

/* 背景颜色 */
.bg-003c79 {
	background: #003c79 !important;
}

/* 文字颜色 */
.c-f {
	color: #FFFFFF !important;
}

.c-a6 {
	color: #a6a6a6 !important;
}

/* 文字样式 */
.f-bold-6 {
	font-weight: 600;
}

/* 对齐 */
.text-center {
	text-align: center;
}

/* 高度 */
.h-18 {
	height: 18px;
}

.h-40 {
	height: 40px;
}

.h-130 {
	height: 130px;
}

.h-150 {
	height: 150px;
}

/* 行高 */
.l-h-24 {
	line-height: 24px;
}

.l-h-26 {
	line-height: 26px;
}

.l-h-30 {
	line-height: 30px;
}

.l-h-40 {
	line-height: 40px;
}